runtime.m.lockedExt (field)
16 uses
runtime (current package)
coro.go#L55: if mp.lockedExt+mp.lockedInt != 0 {
coro.go#L57: c.lockedExt = mp.lockedExt
coro.go#L124: if mp != c.mp || mp.lockedInt != c.lockedInt || mp.lockedExt != c.lockedExt {
coro.go#L127: print("coro: got lock external ", mp.lockedExt, ", want ", c.lockedExt, "\n")
debugcall.go#L145: lockedExt = mp.lockedExt
debugcall.go#L146: mp.lockedExt = 0
debugcall.go#L194: mp.lockedExt = lockedExt
proc.go#L2873: if gp := getg(); gp != nil && gp.m != nil && (gp.m.lockedExt != 0 || gp.m.incgo) && GOOS != "plan9" {
proc.go#L4566: mp.lockedExt = 0
proc.go#L5631: gp.m.lockedExt++
proc.go#L5632: if gp.m.lockedExt == 0 {
proc.go#L5633: gp.m.lockedExt--
proc.go#L5655: if gp.m.lockedInt != 0 || gp.m.lockedExt != 0 {
proc.go#L5678: if gp.m.lockedExt == 0 {
proc.go#L5681: gp.m.lockedExt--
runtime2.go#L675: lockedExt uint32 // tracking for external LockOSThread
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |